From: Aaron Schulz Date: Fri, 4 Apr 2008 13:16:58 +0000 (+0000) Subject: private -> protected (since CleanChanges extends this) X-Git-Tag: 1.31.0-rc.0~48623 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=1db9554156293a1e9e757a0d0c02459df90187f9;p=lhc%2Fweb%2Fwiklou.git private -> protected (since CleanChanges extends this) --- diff --git a/includes/ChangesList.php b/includes/ChangesList.php index e74eba28c9..5089199c6a 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -520,7 +520,7 @@ class EnhancedChangesList extends ChangesList { /** * Enhanced RC group */ - private function recentChangesBlockGroup( $block ) { + protected function recentChangesBlockGroup( $block ) { global $wgLang, $wgContLang, $wgRCShowChangedSize; $r = ''; @@ -728,7 +728,7 @@ class EnhancedChangesList extends ChangesList { return $r; } - private function maybeWatchedLink( $link, $watched=false ) { + protected function maybeWatchedLink( $link, $watched=false ) { if( $watched ) { // FIXME: css style might be more appropriate return '' . $link . ''; @@ -757,7 +757,7 @@ class EnhancedChangesList extends ChangesList { * @return string HTML tag * @access private */ - private function sideArrow() { + protected function sideArrow() { global $wgContLang; $dir = $wgContLang->isRTL() ? 'l' : 'r'; return $this->arrow( $dir, '+' ); @@ -769,7 +769,7 @@ class EnhancedChangesList extends ChangesList { * @return string HTML tag * @access private */ - private function downArrow() { + protected function downArrow() { return $this->arrow( 'd', '-' ); } @@ -778,7 +778,7 @@ class EnhancedChangesList extends ChangesList { * @return string HTML tag * @access private */ - private function spacerArrow() { + protected function spacerArrow() { return $this->arrow( '', ' ' ); } @@ -787,7 +787,7 @@ class EnhancedChangesList extends ChangesList { * @return string HTML
tag * @access private */ - private function spacerIndent() { + protected function spacerIndent() { return '     '; } @@ -795,7 +795,7 @@ class EnhancedChangesList extends ChangesList { * Enhanced RC ungrouped line. * @return string a HTML formated line (generated using $r) */ - private function recentChangesBlockLine( $rcObj ) { + protected function recentChangesBlockLine( $rcObj ) { global $wgContLang, $wgRCShowChangedSize; # Get rc_xxxx variables @@ -871,7 +871,7 @@ class EnhancedChangesList extends ChangesList { * If enhanced RC is in use, this function takes the previously cached * RC lines, arranges them, and outputs the HTML */ - private function recentChangesBlock() { + protected function recentChangesBlock() { if( count ( $this->rc_cache ) == 0 ) { return ''; }